home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / demos / r-z / stormc-demo / include / clib / amigaguide_protos.h < prev    next >
C/C++ Source or Header  |  1996-01-02  |  2KB  |  83 lines

  1. #ifndef  CLIB_AMIGAGUIDE_PROTOS_H
  2. #define  CLIB_AMIGAGUIDE_PROTOS_H
  3.  
  4. /*
  5. **    $VER: amigaguide_protos.h 39.3 (27.5.93)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17. #ifndef  EXEC_PORTS_H
  18. #include <exec/ports.h>
  19. #endif
  20. #ifndef  DOS_DOS_H
  21. #include <dos/dos.h>
  22. #endif
  23. #ifndef  LIBRARIES_AMIGAGUIDE_H
  24. #include <libraries/amigaguide.h>
  25. #endif
  26. #ifndef  UTILITY_TAGITEM_H
  27. #include <utility/tagitem.h>
  28. #endif
  29. #ifndef  UTILITY_HOOKS_H
  30. #include <utility/hooks.h>
  31. #endif
  32. #ifndef  REXX_STORAGE_H
  33. #include <rexx/storage.h>
  34. #endif
  35.  
  36. #ifdef __cplusplus
  37. extern "C" {
  38. #endif
  39.  
  40. /*--- functions in V40 or higher (Release 3.1) ---*/
  41.  
  42. /* Public entries */
  43.  
  44. LONG LockAmigaGuideBase( APTR handle );
  45. void UnlockAmigaGuideBase( long key );
  46. APTR OpenAmigaGuideA( struct NewAmigaGuide *nag, struct TagItem * );
  47. APTR OpenAmigaGuide( struct NewAmigaGuide *nag, Tag tag1, ... );
  48. APTR OpenAmigaGuideAsyncA( struct NewAmigaGuide *nag, struct TagItem *attrs );
  49. APTR OpenAmigaGuideAsync( struct NewAmigaGuide *nag, Tag tag1, ... );
  50. void CloseAmigaGuide( APTR cl );
  51. ULONG AmigaGuideSignal( APTR cl );
  52. struct AmigaGuideMsg *GetAmigaGuideMsg( APTR cl );
  53. void ReplyAmigaGuideMsg( struct AmigaGuideMsg *amsg );
  54. LONG SetAmigaGuideContextA( APTR cl, unsigned long id,
  55.     struct TagItem *attrs );
  56. LONG SetAmigaGuideContext( APTR cl, unsigned long id, Tag tag1, ... );
  57. LONG SendAmigaGuideContextA( APTR cl, struct TagItem *attrs );
  58. LONG SendAmigaGuideContext( APTR cl, Tag tag1, ... );
  59. LONG SendAmigaGuideCmdA( APTR cl, STRPTR cmd, struct TagItem *attrs );
  60. LONG SendAmigaGuideCmd( APTR cl, STRPTR cmd, Tag tag1, ... );
  61. LONG SetAmigaGuideAttrsA( APTR cl, struct TagItem *attrs );
  62. LONG SetAmigaGuideAttrs( APTR cl, Tag tag1, ... );
  63. LONG GetAmigaGuideAttr( Tag tag, APTR cl, ULONG *storage );
  64. LONG LoadXRef( BPTR lock, STRPTR name );
  65. void ExpungeXRef( void );
  66. APTR AddAmigaGuideHostA( struct Hook *h, STRPTR name, struct TagItem *attrs );
  67. APTR AddAmigaGuideHost( struct Hook *h, STRPTR name, Tag tag1, ... );
  68. LONG RemoveAmigaGuideHostA( APTR hh, struct TagItem *attrs );
  69. LONG RemoveAmigaGuideHost( APTR hh, Tag tag1, ... );
  70. STRPTR GetAmigaGuideString( long id );
  71.  
  72. #ifdef __cplusplus
  73. }
  74. #endif
  75.  
  76. #ifdef STORMPRAGMAS
  77. #ifndef _INCLUDE_PRAGMA_AMIGAGUIDE_LIB_H
  78. #include <pragma/amigaguide_lib.h>
  79. #endif
  80. #endif
  81.  
  82. #endif     /* CLIB_AMIGAGUIDE_PROTOS_H */
  83.